home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 1 / zcopy03.zip / ZCOPY03.DOC < prev    next >
Text File  |  1988-09-29  |  6KB  |  123 lines

  1.  
  2. ZCopy v0.3   released September 29, 1988
  3.          
  4. Scott M. Pazur
  5. PO Box 582
  6. Englishtown, NJ  07726
  7.          
  8. What is ZCopy?
  9.         ZCopy is a protective replacement for the MS/PC-DOS "show-
  10. no-mercy" COPY command.  When you tell ZCopy to copy a file, it will
  11. check the destination specification to see if a file by that name
  12. already exists.  If so, you will then have three options - replace,
  13. rename, or skip.  If you specify "replace," ZCopy will delete the
  14. destination by that name and copy the new file in its place.  You can
  15. optionally tell ZCopy to automatically replace any files found to 
  16. already exist by using a "/R" as the last item on the command line.  
  17. On a rename request, you can specify a new name (including wildcards) 
  18. and the same check for existance will take place.
  19.         Also, when encountering an error writing a file (i.e. 
  20. trying to overwrite a "read-only" file), ZCopy will report the
  21. problem, skip that file, and move along, unlike DOS' COPY, which
  22. will abort at that point.  
  23.         The only limitation on ZCopy is that no more than 500 source
  24. files can be copied at one time.
  25.  
  26. Revision History:
  27.  
  28. Version 0.3 9/29/88
  29. - Added ability to use wildcards in target specifications
  30. - Can now copy to same directory as source
  31. - Added ability to rename files if target already exists
  32. - Removed most of the useless windowing routines
  33. - Added "/r" option to automatically replace any file that may already
  34.   exist with the same name as the target         
  35. - Cleaned up the code a little, my C is getting somewhat better
  36.  
  37. Version 0.2 not publically released
  38.  
  39. Version 0.1 7/13/88
  40. - Original release, simple copy with replace/skip option
  41.  
  42.  
  43. Why ZCopy?
  44.         First, because I lost some very important, very long files
  45. because the DOS COPY command overwrote my copies with older, 
  46. unfinished versions.  Sure, I wasn't thinking, but sometimes I 
  47. enjoy the luxury of having my PC think for me.
  48.         Second, I get to teach myself C while I write/update this
  49. program.  This is my second attempt at teaching myself C.  The 
  50. first was a disaster.  This one, obviously, has gone a little
  51. bit better.
  52.  
  53. Syntax:
  54.        ZCopy  [d:][path]filespec  [d:][path][filespec]  [/R]
  55.               ──────────────────  ────────────────────  ────
  56.                      Source            Destination      auto
  57.                                   (if not current dir)  replace
  58.  
  59.  
  60. Return Codes:
  61.         ZCopy will return codes to DOS to indicate what has 
  62. happened during its execution (see ERRORLEVEL in your DOS
  63. manual).  These are as follows:
  64.         0 - Files found and copied, all went fine.
  65.         1 - Syntax Error
  66.         2 - No files were found to copy.
  67.         3 - If you get this return code, please get in touch
  68.             with me (or have your lawyer contact me!)
  69.         4 - More than 500 source files found
  70.         5 - Target Disk full
  71.  
  72. Coming soon to a release of Zcopy:
  73.    - Option for file "moves" rather than "copies"
  74.    - Option for "filling" diskettes with files
  75.    - Ability to pick and choose files to copy from a screen menu
  76.    - Any other logical suggestions you might have (I'm easy)
  77.  
  78.  
  79. Getting in touch with the author:
  80.   I'm easiest to find on the following two BBS's:
  81.      The Right Choice PC-Board
  82.      Spring Lake Heights, NJ
  83.      Mark Jackwicz, Sysop
  84.      201-974-8317 (Public Node 1200/2400)
  85.      (Private Node available with USR HST)
  86.          
  87.      The Jersey Shore PC-Board
  88.      Sayreville, NJ
  89.      Barry "Bub" Jerkowicz, Sysop
  90.      201-613-7350 (USR HST)
  91.  
  92.  
  93. Disclaimer (sorry, but I have to say this):
  94.         By using ZCopy, you assume all responsiblity for what
  95. might happen as a result.  I, Scott M. Pazur, have tested ZCopy
  96. extensively with no terrible side effects, but all systems are 
  97. not created equal.  I can't imagine what could possibly happen,
  98. but just incase...
  99.  
  100.  
  101. -----------------------------------------------------------------------------
  102. | ZCopy v0.3 [Released 9/29/88]              Please complete and mail to:   |
  103. |                                                                           |
  104. | Registration/Suggestion Form               Scott M. Pazur                 |
  105. |                                            PO Box 582                     |
  106. |                                            Englishtown, NJ  07726         |
  107. | Name:    _________________________________                                |
  108. | Address: _________________________________                                |
  109. |          _________________________________    ---  No Donation,           |
  110. |          _________________________________   |   | just suggestions       |
  111. | Daytime Phone: ___________________________    ---  for a future release   |
  112. | Evening Phone: ___________________________                                |
  113. | Where did you get                                                         |
  114. | your copy of ZCopy: ______________________    ---  $5.00 Donation         |
  115. |                     ______________________   |   | Send me a postcard     |
  116. | Suggestions (if any) for a future version:    ---  when the next version  |
  117. | __________________________________________         is released.           |
  118. | __________________________________________                                |
  119. | __________________________________________    ---  $10.00 Donation        |
  120. | __________________________________________   |   | Send me the next       |
  121. | __________________________________________    ---  version on diskette!   |
  122. -----------------------------------------------------------------------------
  123.